home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / man / lib.fmt / c / end.man < prev    next >
Encoding:
Text File  |  1989-06-30  |  1.1 KB  |  67 lines

  1.  
  2.  
  3.  
  4. END                   C Library Procedures                    END
  5.  
  6.  
  7.  
  8. NNAAMMEE
  9.      end, etext, edata - last locations in program
  10.  
  11. SSYYNNOOPPSSIISS
  12.      eexxtteerrnn eenndd;;
  13.      eexxtteerrnn eetteexxtt;;
  14.      eexxtteerrnn eeddaattaa;;
  15.  
  16. DDEESSCCRRIIPPTTIIOONN
  17.      These names refer neither to routines nor to locations with
  18.      interesting contents.  The address of _e_t_e_x_t is the first
  19.      address above the program text, _e_d_a_t_a above the initialized
  20.      data region, and _e_n_d above the uninitialized data region.
  21.  
  22.      When execution begins, the program break coincides with _e_n_d,
  23.      but it is reset by the routines _b_r_k(2), _m_a_l_l_o_c(3), standard
  24.      input/output (_s_t_d_i_o(3S)), the profile (--pp) option of _c_c(1),
  25.      etc.  The current value of the program break is reliably
  26.      returned by `sbrk(0)', see _b_r_k(2).
  27.  
  28. SSEEEE AALLSSOO
  29.      brk(2), malloc(3)
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63. Sprite v1.0               May 12, 1986                          1
  64.  
  65.  
  66.  
  67.